home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the 3D Game Programming Gurus / gurus.iso / DirectX / dx9sdkcp.exe / SDK (C++) / Include / DShowIDL / strmif.idl < prev    next >
Encoding:
Text File  |  2002-11-12  |  1.6 KB  |  52 lines

  1. //------------------------------------------------------------------------------
  2. // File: StrmIf.idl
  3. //
  4. // Desc: ActiveMovie interface definitions.
  5. //
  6. // Copyright (c) 1992 - 2002, Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8.  
  9. //
  10. // Temporarily disable the /W4 compiler warning C4201, which will be 
  11. // reported by all apps which include streams.h or dshow.h, which both
  12. // include the strmif.h generated by this IDL file.
  13. //
  14. cpp_quote("//+-------------------------------------------------------------------------")
  15. cpp_quote("//")
  16. cpp_quote("//  Copyright (C) Microsoft Corporation, 1999-2002.")
  17. cpp_quote("//")
  18. cpp_quote("//--------------------------------------------------------------------------")
  19. cpp_quote("// Disable /W4 compiler warning C4201: nameless struct/union")
  20. cpp_quote("#pragma warning(push)")
  21. cpp_quote("#pragma warning(disable:4201)  // Disable C4201: nameless struct/union")
  22. cpp_quote("  ")   // Blank space
  23.  
  24.  
  25. import "unknwn.idl";
  26. import "objidl.idl";    // for IPersist (IFilter's root)
  27.  
  28. #include "devenum.idl"
  29.  
  30. // core interfaces
  31. #include "axcore.idl"
  32.  
  33. // extended, ActiveMovie-only interfaces
  34. #include "axextend.idl"
  35.  
  36. // application interfaces for DVD
  37. #include "dvdif.idl"
  38.  
  39. // Dynamic graph stuff
  40. #include "dyngraph.idl"
  41.  
  42.  
  43. // Video Mixing Renderer
  44. #include "VMRender.idl"
  45.  
  46.  
  47. //
  48. // Restore the previous setting for C4201 compiler warning
  49. //
  50. cpp_quote("// Restore the previous setting for C4201 compiler warning")
  51. cpp_quote("#pragma warning(pop)")
  52.